INSTALLATION INSTRUCTIONS --------------------------

*CONTROL PANEL IS ONLY OFFICIALLY TESTED ON DEBIAN LINUX

Run these commands in this order as super user or use sudo:

chmod +x ControlPoint.sh
./ControlPoint.sh

When prompted, set the desired admin password, or leave it blank to
use the default: password

----------------------------------------------------

CODE STRUCTURE -------------------------------------
ControlPoint/
	|-AssetManagment/			# Contains blueprints and logic for pages related to assets
	|-asset_assignments.py
	|-asset_disposals.py
	|-asset_maintenance.py
	|-asset_statuses.py
	|-asset_types.py
	|-assets.py
	|-departments.py
	|-employees.py
	|-locations.py
	|-vendors.py
|
|-MiscPages/				# Contains blueprints and logic for miscellaneous pages
	|-login.py
	|-manage_users.py
|
|-Sample Data/			# Contains CSVs with sample data for demonstrations
	|-asset_assignments.csv
	|-asset_disposals.csv
	|-asset_maintenances.csv
	|-asset_statuses.csv
	|-asset_types.csv
	|-assets.csv
	|-departments.csv
	|-employees.csv
	|-locations.csv
	|-vendors
|
|-Templates/				# Contains all HTML files for pages
	|-asset_assignments.html
	|-asset_disposals.html
	|-asset_maintenance.html
	|-asset_status.html
	|-asset_type.html
	|-assets.html
	|-base.html			# Main navigation bar
	|-departments.html
	|-employees.html
	|-index.html			# Home page
	|-locations.html
	|-login.html
	|-subnav.html			# Secondary navigation bar for ‘manage assets’ pages
	|-users.html
	|-vendors.html
|
|-app.py 				# Main function
|-misc_fuctions.py			# Contains logic for exporting CSVs
|-models.py				# Contains DB models for SQLAlchemy
|-requirements.txt			# Contains list of packages needed during installation
|-route_decorators.py			# Contains optional fields for blueprints to allow for RBAC

----------------------------------------------------